home *** CD-ROM | disk | FTP | other *** search
- <HTMLtool>Open a new browser window in fullscreen mode</HTMLtool>
-
- <!-- TWO STEPS TO INSTALL FULL SCREEN WINDOW:
-
- 1. Copy the coding into the HEAD of your HTML document
- 2. Add the last code into the BODY of your HTML document -->
-
- <!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
-
- <HEAD>
-
- <SCRIPT LANGUAGE="JavaScript">
- <!-- Begin
- function fullScreen(theURL) {
- window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
- }
- // End -->
- </script>
- </HEAD>
-
- <!-- STEP TWO: Copy this code into the BODY of your HTML document -->
-
- <BODY>
-
- <a href="javascript:void(0);" onClick="fullScreen('full-screen.html');">Open Full Screen Window</a>